home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form Form3
- BackColor = &H00C0C0C0&
- BorderStyle = 3 'Fixed Double
- ClientHeight = 4620
- ClientLeft = 1485
- ClientTop = 1485
- ClientWidth = 6375
- ControlBox = 0 'False
- Height = 5025
- Left = 1425
- LinkMode = 1 'Source
- LinkTopic = "Form3"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 4620
- ScaleWidth = 6375
- Top = 1140
- Width = 6495
- Begin CommandButton Command2
- Caption = "Still not sure I like it."
- Height = 495
- Left = 3360
- TabIndex = 1
- Top = 3840
- Width = 2655
- End
- Begin CommandButton Command1
- Caption = "&Print Registration Form"
- Height = 495
- Left = 360
- TabIndex = 0
- Top = 3840
- Width = 2655
- End
- Begin Label Label1
- BorderStyle = 1 'Fixed Single
- Caption = "Label1"
- Height = 3135
- Left = 420
- TabIndex = 2
- Top = 360
- Width = 5535
- End
- DefInt A-Z
- Dim btn#
- Sub Command1_Click ()
- MousePointer = 11
- On Error GoTo NoFile
- Close #2: Open CSH_Path$ + "CSH_ORD.FRM" For Input As #2
- On Error GoTo NoPrinter
- Printer.Print ""
- On Error GoTo 0
- Do While Not EOF(2)
- Line Input #2, x$
- Printer.Print x$
- Loop
- Printer.EndDoc
- MsgBox "The order form has been sent to Window's to print."
- MousePointer = 0
- Unload Form3
- Exit Sub
- NoFile:
- x$ = "The file CSH_ORD.FRM was not found. It has a complete order form in it. "
- x$ = x$ + "Instead of the complete form, only ordering information will be printed."
- MousePointer = 0
- MsgBox x$
- Printer.Print "To pay for CardShark Hearts, send $25 plus $4 shipping to"
- Printer.Print "Nelson Ford, P.O.Box 35705, Houston, TX 77235 or call 800-242-4775."
- Printer.Print "All major credit cards accepted. Tech support: 713-524-6394."
- Printer.Print "Specify disk size wanted."
- Unload Form3
- Exit Sub
- NoPrinter:
- MousePointer = 0
- MsgBox "Printer not ready."
- Exit Sub
- End Sub
- Sub Command2_Click ()
- f$ = CSH_Path$ + "Hrt2Me9.wav"
- If Dir$(f$) <> "" Then
- Form1.MMControl1.Wait = -1
- Form1.MMControl1.Command = "Close"
- Form1.MMControl1.FileName = f$
- Form1.MMControl1.Command = "Open"
- Form1.MMControl1.Command = "Sound"
- End If
- Unload Form3
- End Sub
- Sub Form_Load ()
- Form3.Left = (Screen.Width - Form3.Width) / 2
- Form3.Top = (Screen.Height - Form3.Height) / 2
- cr$ = Chr$(13) + Chr$(10)
- a$ = "CardShark Hearts is being marketed as shareware." + cr$ + cr$
- a$ = a$ + "Any fee that you paid for a disk with this game on it "
- a$ = a$ + "or that you paid to download it was for this evaluation "
- a$ = a$ + "copy only. No part of that payment went to the author of the program. " + cr$ + cr$
- a$ = a$ + "Use of the program beyond a reasonable evaluation "
- a$ = a$ + "period requires payment to the author." + cr$ + cr$
- b$ = "The purchase price of CardShark Hearts is $25." + cr$
- b$ = b$ + "In addition to receiving the latest version, "
- b$ = b$ + "you will get the bonus items described in the "
- b$ = b$ + "documentation." + cr$ + cr$
- b$ = b$ + "To order, call 800-242-4775." + cr$ + "For technical support, call 713-524-6394."
- Label1.Caption = a$ + b$
- If Rnd > .5 Then
- btn# = Command1.Left
- Command1.Left = Command2.Left
- Command2.Left = btn#
- End If
- Form3Up = -1
- End Sub
- Sub Form_Paint ()
- Frame Form3, Label1
- Frame Form3, Command1
- Frame Form3, Command2
- 'If btn# > 0 Then
- ' PositionCursor Form3.Command2
- 'Else
- PositionCursor Form3.Command1
- 'End If
- End Sub
-